home *** CD-ROM | disk | FTP | other *** search
/ Alles Voor Internet / Tout Pour Internet / alles voor internet.iso / MacInternet™ / Telnet / Terminal 2.2 / Project / Sources / Popup.h < prev    next >
Text File  |  1992-01-17  |  388b  |  18 lines

  1. /*
  2.     Terminal 2.2
  3.     "Popup.h"
  4. */
  5.  
  6. typedef struct {
  7.     short item;        /* Dialog item id */
  8.     short menu;        /* Popup menu id */
  9.     MenuHandle h;    /* Popup menu handle */
  10.     short choice;    /* Current choice (1...) */
  11. } POPUP;
  12.  
  13. #define NEWPOPUP    /* Use downward pointing triangle */
  14.  
  15. Boolean PopupMousedown (DialogPtr, EventRecord *, short *);
  16. void PopupInit (DialogPtr, POPUP *);
  17. void PopupCleanup (void);
  18.